home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 27 / CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso / CUCD / Programming / JForth / JTools / Appls / dial.readme < prev    next >
Encoding:
Text File  |  1992-01-03  |  2.1 KB  |  74 lines

  1. Quick Dial Utility
  2.  
  3. Copyright by Phil Burk 1991
  4.  
  5. written using JForth Professional V3.0
  6.  
  7. DIAL may be freely redistributed as ShareWare when accompanied by
  8. this file.  If you like DIAL, please send $10.00 to:
  9.  
  10.     Phil Burk, PO Box 151051, San Rafael, CA, 94915-1051
  11.  
  12. DIAL is a CLI based utility that will look up and dial
  13. telephone numbers through your modem.  All you have to do
  14. is enter in a CLI:
  15.  
  16.     DIAL FRED
  17.     
  18. then pick up the phone and wait for Fred to answer.  DIAL will
  19. search a text file containing names and phone numbers.  When
  20. it finds a match it opens the SER: device and send a Hayes
  21. compatible message to your modem to dial.
  22.  
  23. DIAL was written as a shell command because a mouse driven interface
  24. would take longer to use then just dialing the phone directly.
  25.  
  26. To install DIAL you must:
  27.  
  28.     1) Copy DIAL to your C: directory or other command directory.
  29.     
  30.     2) Set your serial preferences to match your modem.
  31.        Eg. 1200 baud, 8 data bits, etc.
  32.        
  33.     3) Create a file called S:PHONELIST containing names and phone
  34.        numbers.  Names and phone numbers cannot have spaces
  35.        inside them.  For example:
  36.  
  37.          JOE  1(707)555-1212                <-- GOOD
  38.          FRED FLINTSTONE 1 (707) 555-1234   <-- BAD
  39.          
  40.        There are two ways to do this. One is using a text editor.
  41.        The other is to use the ADD option of DIAL.
  42.        For example:
  43.        
  44.          DIAL ADD  WILMA  1(415)555-9876
  45.          
  46.        The above will add WILMA's name to your phone list.  
  47.        To delete names, or to change names, just edit the 
  48.        file using a normal text editor like EMACS or Textra.
  49.        If the phonelist file does not exist, DIAL will create it.
  50.  
  51. You can optionally specify a filename other than S:PHONELIST.
  52. For example:
  53.  
  54.     DIAL IRMA MYSTUFF:MYLIST
  55.     
  56. Since that would be more typing than just dialing it yourself,
  57. I recommend making an alias as follows:
  58.  
  59.     ALIAS  DL DIAL [] MYSTUFF:MYLIST
  60.     
  61. Put that alias in your S:SHELL-STARTUP file.
  62.  
  63. If you would like information about JForth, write to:
  64.  
  65.     Delta Research
  66.     PO Box 151051
  67.     San Rafael, CA
  68.     94915-1051
  69.     
  70. or phone:       (415) 461-1442
  71.  
  72. or e-mail to:   phil@mills.edu
  73.  
  74.